home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 November / CHIP Kasım 1996.iso / ms / visualj / vjtrialb.exe / RCDATA / CABINET / VJSETUP.BAT < prev    next >
DOS Batch File  |  1996-08-15  |  593b  |  27 lines

  1. @echo off
  2. if "%SystemRoot%"=="" goto W95OS
  3. if "%winbootdir%"=="" goto NTOS
  4.  
  5. :NTOS
  6. if not exist %SystemRoot%\Java\VJTrial\msdev\setup.exe goto error
  7. REM Run the VJ trial installation EXE
  8. %SystemRoot%\Java\VJTrial\msdev\setup
  9. goto end
  10.  
  11.  
  12. :W95OS
  13. cd %winbootdir%\Java\VJTrial
  14. if not exist %winbootdir%\Java\VJTrial\msdev\setup.exe goto error
  15. REM Run the VJ trial installation EXE
  16. %winbootdir%\Java\VJTrial\msdev\setup
  17. goto end
  18.  
  19. :error
  20. echo:
  21. echo ERROR: Unable to install Visual J++ Trial version
  22. echo Try running \WindowsDir\Java\VJTrial\MSDev\Setup.exe
  23. echo:
  24. pause
  25.  
  26. :end
  27.